home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 001a / css10.zip / PCBOARD.SIM < prev    next >
Text File  |  1991-01-24  |  1KB  |  22 lines

  1. /////////////////////////////  PCBOARD.SIM  /////////////////////////////////
  2. //                                                                         //
  3. // This is a sample SIMPLE script for logging on to a PCBoard based        //
  4. // system. The logon questions are handled in any order, and optional      //
  5. // prompts are ok.                                                         //
  6. //                                                                         //
  7. // Put your name in the line that says ASSIGN STRING1.  The script will    //
  8. // get the proper password from the dialing directory, CSS puts the        //
  9. // password in the variable BBSPASSWORD.                                   //
  10. //                                                                         //
  11. /////////////////////////////////////////////////////////////////////////////
  12.  
  13. ASSIGN STRING1, "John Smith"     // Put your name (in Quotes!) here.
  14.  
  15. ALARM 1
  16. STARTWHEN
  17.   WHENEVER "Language # to use" THENDO SEND HITENTER
  18.   WHENEVER " graphics" THENDO SEND "y q" HITENTER
  19.   WHENEVER "first name?" THENDO SEND STRING1 HITENTER
  20.   WHENEVER "Password" THENDO SEND BBSPASSWORD HITENTER
  21. ENDWHEN
  22.